OnClientDeletingRow Property
In This Topic
Occurs when the user is deleting a selected row by pressing the Delete key (see the allowDelete property).
Syntax
'Declaration
Public Overridable Property OnClientDeletingRow As System.String
'Usage
Dim instance As FlexGridBase(Of T)
Dim value As System.String
instance.OnClientDeletingRow = value
value = instance.OnClientDeletingRow
public virtual System.string OnClientDeletingRow {get; set;}
public read-write property OnClientDeletingRow: System.String; virtual;
public function get,set OnClientDeletingRow : System.String
public: __property virtual System.string* get_OnClientDeletingRow();
public: __property virtual void set_OnClientDeletingRow(
System.string* value
);
public:
virtual property System.String^ OnClientDeletingRow {
System.String^ get();
void set ( System.String^ value);
}
See Also